From 323e7e53e35a17765e92443b50b21398062bd05b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 11 Mar 1993 21:36:22 +0000 Subject: [PATCH] (tigetstr): Add dummy definition to make Emacs link again. --- src/term.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/term.c b/src/term.c index bf3087e0b9f..b8bf719f9b6 100644 --- a/src/term.c +++ b/src/term.c @@ -1299,6 +1299,10 @@ term_get_fkeys (address) * Various mappings to try and get a better fit. */ { +/* ??? I have never heard of tigetstr, and it does not exist. + This at least enables the code below to compile -- rms. */ +#define tigetstr(foo) 0 + #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \ if (!tigetstr(cap1) && tgetstr(cap2)) \ Fdefine_key (Vfunction_key_map, \ -- 2.30.2